home *** CD-ROM | disk | FTP | other *** search
/ Super CD / Super CD.iso / programs / hyperdos / install.bat < prev   
Encoding:
DOS Batch File  |  1991-03-22  |  2.4 KB  |  60 lines

  1. @echo off
  2. If exist install.bat goto skip0
  3. echo To install HyperDOS onto your hard disk, first go to the floppy drive
  4. echo which contains the HyperDOS floppy, then type install.  For example:
  5. echo      a:
  6. echo     install
  7. goto done
  8. :skip0
  9. echo  -------------------------------------------------------------
  10. echo  Installing HyperDOS onto your C: drive!!!
  11. echo  -------------------------------------------------------------
  12. echo  If you currently have a version of HyperDOS on your C: drive,
  13. echo  the data from your Notepad, Card File, Letter Writer, and
  14. echo  Address Book will be copied to your new HyperDOS.  Information in
  15. echo  the Calendar and Program Manager will be lost.  Also, the old version
  16. echo  of HyperDOS will be deleted.  If you do not want the data from
  17. echo  your Notepad, Card File, ...  you will have an opportunity to
  18. echo  skip the update procedure later.
  19. echo  -------------------------------------------------------------
  20. echo  If you do NOT want to continue with the installation, hold the
  21. echo  CTRL key down and press C
  22. pause
  23. if not exist c:\hyperdos\*.* mkdir c:\hyperdos
  24. echo  Continuing with HyperDOS installation.
  25. copy hyperarc.exe c:\hyperdos
  26. c:
  27. cd \hyperdos
  28. if not exist c:\hyperdos\oldpads\*.* mkdir c:\hyperdos\oldpads
  29. if exist note.pad copy note.pad oldpads
  30. if exist index.pad copy index.pad oldpads
  31. if exist letter.pad copy letter.pad oldpads
  32. if exist phone.pad  copy phone.pad oldpads
  33. if exist pnotes.pad copy pnotes.pad oldpads
  34. if exist outgoing.pad copy outgoing.pad oldpads
  35. hyperarc
  36. del hyperarc.exe
  37. if not exist oldpads\*.pad goto almost
  38. echo -
  39. echo -------------------------------------------------------
  40. echo The new version of HyperDOS is now on your hard disk.
  41. echo The next step in this procedure is to extract the information
  42. echo from your previous Notepad, Card File, Letter Writer, and Address
  43. echo Book.  If you do NOT want the old information hold the
  44. echo CTRL key down and press C now.
  45. echo -------------------------------------------------------
  46. echo to start HyperDOS type:
  47. echo     hyperdos
  48. echo after the    C:\HYPERDOS   prompt.
  49. echo -------------------------------------------------------
  50. pause
  51. hyperdos autoup
  52. :almost
  53. echo -
  54. echo -------------------------------------------------------
  55. echo to start HyperDOS type:
  56. echo     hyperdos
  57. echo after the    C:\HYPERDOS   prompt.
  58. echo -------------------------------------------------------
  59. :done
  60.